home *** CD-ROM | disk | FTP | other *** search
/ Informática Multimedia 1995 April / Informatica Multimedia CD - Epimundo.iso / WIN / HERRWAV / WAVEIT.ZIP / WAVEFRMT.TXT < prev    next >
Encoding:
Text File  |  1991-04-23  |  856 b   |  27 lines

  1.  
  2.  
  3.     /*\
  4.     |*|----====< ".WAV" file format >====----
  5.     |*|
  6.     |*|     4 bytes 'RIFF'
  7.     |*|     4 bytes <length>
  8.     |*|     4 bytes 'WAVE'
  9.     |*|     4 bytes 'fmt '
  10.     |*|     4 bytes  <length>        ; 10h - length of 'data' block
  11.     |*|     2 bytes  01         ; format tag
  12.     |*|     2 bytes  01         ; channels (1=mono, 2=stereo)
  13.     |*|     4 bytes  xxxx        ; samples per second
  14.     |*|     4 bytes  xxxx        ; average samples per second
  15.     |*|     2 bytes  01         ; block alignment
  16.     |*|     2 bytes  08         ; bits per sample
  17.     |*|     4 bytes 'data'
  18.     |*|     4 bytes <length>
  19.     |*|       bytes <sample data>
  20.     |*|
  21.     |*|     Note: the sample data must end on an even byte boundary.
  22.     |*|           All numeric data fields are in the Intel format
  23.     |*|           of low-high byte ordering.
  24.     |*|
  25.     \*/
  26.  
  27.